摘要: #include<stdio.h> int main(){ int numwws[10]; int i,j; for(i=0;i<10;i++){ numwws[i]=i+9999; } for(j=0;j<10;j++){ printf("numwws[%d]:%d\n",numwws[j]); 阅读全文
posted @ 2025-03-28 16:33 华腾智算 阅读(6) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main() { int i=1; for(i;i<=50;i=i+1){ if(i%2==0&&i%3!=0){ printf("%d\n",i); }else{ continue; } } } 阅读全文
posted @ 2025-03-28 10:11 华腾智算 阅读(13) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main() { int i=1; for(i;i<=10;i++) { printf("哈哈%d\n",i); } } 注意C99写法和其它不一样。 #include <stdio.h> int main() { int i=1; for(i;i<=1 阅读全文
posted @ 2025-03-28 09:06 华腾智算 阅读(6) 评论(0) 推荐(0)
https://damo.alibaba.com/ https://tianchi.aliyun.com/course?spm=5176.21206777.J_3941670930.5.87dc17c9BZNvLL