Computer Science, asked by bharathivennkat689, 1 year ago

Write a program to display the equation of a line in the form ax+by=c

Answers

Answered by utkarshmishra9819
5

Answer:

class prog { void main(int a,int b,int c)

{

System.out.println(a+"x+"+b+"y="+c);

}}

Similar questions