2019年4月25日

C语言--实验三

摘要: 内容一 #include <stdio.h> int main() { int i; long s; s=0; for(i=22;i<=1002;i=i+20) { s=i+s; } printf("%d\n",s); return 0; } #include <stdio.h> void main 阅读全文

posted @ 2019-04-25 15:58 p201821430005 阅读(138) 评论(0) 推荐(0) 编辑

C语言--实验二

摘要: 内容一 #include <stdio.h> void main() { char a[5]; scanf("%s",&a); printf("%s\n",a); } 内容二 #include <stdio.h>void main(){ int year; printf("Please input 阅读全文

posted @ 2019-04-25 15:34 p201821430005 阅读(154) 评论(3) 推荐(0) 编辑

导航