解题思路:
注意事项:
参考代码:
import java.util.Scanner; public class T1969 { public static void main(String[] args) { Scanner in = new Scanner(System.in); while(in.hasNext()){ String s = in.next(); int start = in.nextInt(),step = in.nextInt(); for(int i = start;i<s.length();i+=step){ System.out.print(s.charAt(i)); } System.out.println(); } in.close(); } }
0.0分
0 人评分
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:561 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:941 |
不会做的浏览:954 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:632 |
WU-蓝桥杯算法提高VIP-勾股数 (C++代码)浏览:1685 |
WU-输出正反三角形 (C++代码)浏览:1099 |
校门外的树 (C语言代码)浏览:733 |
Tom数 (C语言代码)浏览:758 |
时间转换 (C语言代码)浏览:697 |
数组输出 (C语言代码)浏览:749 |