07 2019 档案
摘要:From:《python编程从入门到实践》 持续更新中... 都在代码里了 第一到七章: 第八章函数调用基本操作: 将函数导入模块,使用模块中的制定函数: python3中的基本输入输出:
阅读全文
摘要:Stars Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 58255 Accepted: 24860 Description Astronomers often examine star maps where stars are
阅读全文
摘要:1 """ 2 a = int(input('a = ')) 3 b = int(input('b = ')) 4 print('%d + %d = %d' % (a, b, a + b)) 5 print("%d / %d = %f" % (a, b, a / b)) 6 print('%d //
阅读全文
摘要:Tian Ji -- The Horse Racing Time Limit: 5000MS Memory Limit: 65536K Total Submissions: 17662 Accepted: 5452 Description Here is a famous story in Chin
阅读全文
摘要:问题A:Hello SUST! 知识点:基本输入输出 C/C++: 1 #include <stdio.h> 2 3 int main() { 4 int n; 5 scanf("%d", &n); 6 while(n --) { 7 printf("Hello SUST!\n"); 8 } 9 r
阅读全文