题解 1762: printf基础练习

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

printf基础练习 java代码

摘要:解题思路:直接输出print即可,要注意前缀注意事项:已知输出16进制和8进制为%x,%o,前面要加上0和0x表示这是一个16或8进制数参考代码:import java.util.Scanner;pu……

java--study||O.o

摘要:参考代码:public class Main {   public static void main(String[] args) {     System.out.printf("0%o 0x……

c++cout函数实现

摘要:解题思路:使用cout结合操纵符oct(八进制输出)和showbase(显示进制前缀)输出八进制形式的数字,接着使用hex(十六进制输出)和showbase输出十六进制形式的数字,中间用空格分隔。注意……

printf基础练习 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() {      printf("0%o 0x%x", 123456789, 123456789);     ……

printf基础练习(简单C++)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; #include<cstdio> int main() {     printf……

编写题解 1762: printf基础练习

摘要:解题思路:注意事项:这道题年代较长,如今的python3.8.6需要print(&#39;0o%o 0x%x&#39;%(n,n))参考代码:n=123456789print(&#39;0%o 0x%……